home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bash.postrm < prev    next >
Encoding:
Text File  |  2007-04-10  |  426 b   |  19 lines

  1. #! /bin/sh -e
  2.  
  3. if [ "$1" = "purge" ]; then
  4.   rm -f /etc/bash_completion
  5.   rmdir --ignore-fail-on-non-empty /etc/bash_completion.d
  6. fi
  7.  
  8. if [ -x /usr/sbin/remove-shell ] && [ -f /etc/shells ]; then
  9.     /usr/sbin/remove-shell /bin/bash
  10.     /usr/sbin/remove-shell /bin/rbash
  11. fi
  12.  
  13. # Automatically added by dh_installmenu
  14. if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
  15. # End automatically added section
  16.  
  17.  
  18. exit 0
  19.